home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 1 / Gold Medal Software Volume 1 (Gold Medal) (1994).iso / prog / mysteryc.arj / EXH28.C < prev    next >
Encoding:
C/C++ Source or Header  |  1993-07-05  |  84 b   |  8 lines

  1. #include <stdio.h>
  2. main()
  3. {
  4.  char ch;
  5.  ch = 'A' + 10;
  6.  printf("%c", ch);
  7.  }
  8.